* ses.el (ses-rename-cell): Correct bug on mode-line update after cell renaming.
authorVincent Belaïche <vincentb1@users.sourceforge.net>
Sat, 24 Nov 2012 17:44:29 +0000 (18:44 +0100)
committerVincent Belaïche <vincentb1@users.sourceforge.net>
Sat, 24 Nov 2012 17:44:29 +0000 (18:44 +0100)
lisp/ChangeLog
lisp/ses.el

index 650f6798c7c2a6855a306decb49fec0c5c736111..a7d8e901166475430942ffd9b859ab6948f1ec9e 100644 (file)
@@ -1,3 +1,8 @@
+2012-11-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
+
+       * ses.el (ses-rename-cell): Correct bug on mode-line update after
+       cell renaming.
+
 2012-11-24  Chong Yidong  <cyd@gnu.org>
 
        * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
index 27b906d22e3d5075fd3e7d641ae9739ed7acec0e..a0b69232e19012f61a50bca3f3c638ea6db9f0c5 100644 (file)
@@ -3313,7 +3313,7 @@ highlighted range in the spreadsheet."
       (put-text-property pos end 'intangible new-name))
     ;; update mode line
     (setq mode-line-process (list " cell "
-                                 (symbol-name sym)))
+                                 (symbol-name new-name)))
     (force-mode-line-update)))
 
 ;;----------------------------------------------------------------------------